The QuickOPC “Classic” and QuickOPC-UA class libraries are made up of namespaces. Each namespace contains types that you can use in your program: classes, structures, enumerations, delegates, and interfaces.
All our namespaces begin with OpcLabs name. QuickOPC “Classic” and QuickOPC-UA define types mainly in namespaces described in tables under the links below.
You can use symbols contained in the namespaces by using their fully qualified name, such as OpcLabs.EasyOpc.DataAccess.EasyDAClient. In order to save typing and achieve more readable code, you will typically instruct your compiler to make the namespaces you use often available without explicit reference. To do so:
- In Visual Basic (VB.NET), place the corresponding Imports statements at the beginning of your code files.
- In Visual C#, place the corresponding using directives at the beginning of your code files.
- In Visual C++, place the corresponding using namespace directives at the beginning of your code files.
- In Visual F#, place the corresponding open directives at the beginning of your code files.
- In PowerShell, place the corresponding using namespace directives to your script files.
The features discussed here, or some of them, may not be available in all editions of the product. Check the
Product Editions page for differences between the editions. The trial license has all features enabled (and is limited in period for which it provides valid data), but licenses for specific commercial editions may have functionality limitations.
See Also